home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / enlightenment / e_xinerama.h < prev    next >
C/C++ Source or Header  |  2006-01-09  |  567b  |  27 lines

  1. /*
  2.  * vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2
  3.  */
  4. #ifdef E_TYPEDEFS
  5.  
  6. typedef struct _E_Screen E_Screen;
  7.  
  8. #else
  9. #ifndef E_XINERAMA_H
  10. #define E_XINERAMA_H
  11.  
  12. struct _E_Screen
  13. {
  14.    int screen;
  15.    int x, y, w, h;
  16. };
  17.  
  18. EAPI int              e_xinerama_init(void);
  19. EAPI int              e_xinerama_shutdown(void);
  20. EAPI void             e_xinerama_update(void);
  21. EAPI const Evas_List *e_xinerama_screens_get(void);
  22. EAPI const Evas_List *e_xinerama_screens_all_get(void);
  23. EAPI void             e_xinerama_fake_screen_add(int x, int y, int w, int h);
  24.     
  25. #endif
  26. #endif
  27.